home *** CD-ROM | disk | FTP | other *** search
/ Delphi Programmer's Power Pack / Delphi Volume 1.iso / e_to_l / fbuilder / delphi / fbrtcomp.int < prev    next >
Text File  |  1996-09-15  |  1KB  |  37 lines

  1. {*                               *}
  2. {* FormulaBuilder                *}
  3. {* YGB Software,Inc              *}
  4. {* Copyright 1995 Clayton Collie *}
  5. {* All Rights Reserved           *}
  6. {*                               *}
  7. {* This unit defines the object  *}
  8. {* TRTTIExpression, a RTTI-Aware *}
  9. {* Expression type               *}
  10. {*                               *}
  11. {$F+}
  12. Unit FBRTCOMP;
  13. Interface
  14. uses typinfo,classes,sysutils,fbcomp,fbcalc;
  15.  
  16. TYPE
  17.   TRTTIExpression = Class(TCustomExpression)
  18.   Private
  19.     fObject : TObject;
  20.     Procedure  SetObject(const theObject : TObject);
  21.   Public
  22.     Constructor Create(AOwner : TComponent); override;
  23.     Destructor  Destroy;                     override;
  24.     Function    StatusText : string;         override;
  25.     Procedure   Clear;                       override;
  26.     Property    Root  : TObject read fObject write SetObject;
  27.   Published
  28.     Property    Formula;
  29.     Property    Lines;
  30.     Property    UseExceptions;
  31.   end;
  32.  
  33.  
  34.  
  35. IMPLEMENTATION
  36. END.
  37.